home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / fonts / fonts.conf next >
Extensible Markup Language  |  2005-10-16  |  12KB  |  405 lines

  1. <?xml version="1.0"?>
  2. <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
  3. <!-- /etc/fonts/fonts.conf file to configure system font access -->
  4. <fontconfig>
  5.  
  6. <!--
  7.     DO NOT EDIT THIS FILE.
  8.     IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
  9.     LOCAL CHANGES BELONG IN 'local.conf'.
  10.  
  11.     The intent of this standard configuration file is to be adequate for
  12.     most environments.  If you have a reasonably normal environment and
  13.     have found problems with this configuration, they are probably
  14.     things that others will also want fixed.  Please submit any
  15.     problems to the fontconfig bugzilla system located at fontconfig.org
  16.  
  17.     Note that the normal 'make install' procedure for fontconfig is to
  18.     replace any existing fonts.conf file with the new version.  Place
  19.     any local customizations in local.conf which this file references.
  20.  
  21.     Keith Packard
  22. -->
  23.  
  24. <!-- Font directory list configured on  -->
  25.  
  26.     <dir>/usr/X11R6/lib/X11/fonts/Type1</dir>
  27.     
  28.     <dir>/usr/share/fonts</dir>
  29.     <dir>/usr/local/share/fonts</dir>
  30.     <dir>/usr/X11R6/lib/X11/fonts/75dpi</dir>
  31.     <dir>/usr/X11R6/lib/X11/fonts/100dpi</dir>
  32.     <dir>~/.fonts</dir>
  33.  
  34. <!--
  35.   Accept deprecated 'mono' alias, replacing it with 'monospace'
  36. -->
  37.     <match target="pattern">
  38.         <test qual="any" name="family">
  39.             <string>mono</string>
  40.         </test>
  41.         <edit name="family" mode="assign">
  42.             <string>monospace</string>
  43.         </edit>
  44.     </match>
  45.  
  46. <!--
  47.   Accept alternate 'sans serif' spelling, replacing it with 'sans-serif'
  48. -->
  49.     <match target="pattern">
  50.         <test qual="any" name="family">
  51.             <string>sans serif</string>
  52.         </test>
  53.         <edit name="family" mode="assign">
  54.             <string>sans-serif</string>
  55.         </edit>
  56.     </match>
  57.  
  58. <!--
  59.   Accept deprecated 'sans' alias, replacing it with 'sans-serif'
  60. -->
  61.     <match target="pattern">
  62.         <test qual="any" name="family">
  63.             <string>sans</string>
  64.         </test>
  65.         <edit name="family" mode="assign">
  66.             <string>sans-serif</string>
  67.         </edit>
  68.     </match>
  69.  
  70. <!--
  71.   Mark common families with their generics so we'll get
  72.   something reasonable
  73. -->
  74.  
  75. <!--
  76.   Serif faces
  77.  -->
  78.     <alias>
  79.         <family>Bitstream Vera Serif</family>
  80.         <family>Times</family>
  81.         <family>Times New Roman</family>
  82.         <family>Nimbus Roman No9 L</family>
  83.         <family>Luxi Serif</family>
  84.         <family>Kochi Mincho</family>
  85.         <family>AR PL SungtiL GB</family>
  86.         <family>AR PL Mingti2L Big5</family>
  87.         <family>Baekmuk Batang</family>            
  88.         <default><family>serif</family></default>
  89.     </alias>
  90. <!--
  91.   Sans-serif faces
  92.  -->
  93.     <alias>
  94.         <family>Bitstream Vera Sans</family>
  95.         <family>Helvetica</family>
  96.         <family>Arial</family>
  97.         <family>Verdana</family>
  98.         <family>Nimbus Sans L</family>
  99.         <family>Luxi Sans</family>
  100.         <family>Kochi Gothic</family>
  101.         <family>AR PL KaitiM GB</family>
  102.         <family>AR PL KaitiM Big5</family>
  103.         <family>Baekmuk Dotum</family>
  104.         <family>SimSun</family>
  105.         <default><family>sans-serif</family></default>
  106.     </alias>
  107. <!--
  108.   Monospace faces
  109.  -->
  110.      <alias>
  111.         <family>Bitstream Vera Sans Mono</family>
  112.         <family>Courier</family>
  113.         <family>Courier New</family>
  114.         <family>Andale Mono</family>
  115.         <family>Luxi Mono</family>
  116.         <family>Nimbus Mono L</family>
  117.         <family>NSimSun</family>
  118.         <default><family>monospace</family></default>
  119.     </alias>
  120. <!--
  121.   If the font still has no generic name, add sans-serif
  122.  -->
  123.     <match target="pattern">
  124.         <test qual="all" name="family" compare="not_eq">
  125.             <string>sans-serif</string>
  126.         </test>
  127.         <test qual="all" name="family" compare="not_eq">
  128.             <string>serif</string>
  129.         </test>
  130.         <test qual="all" name="family" compare="not_eq">
  131.             <string>monospace</string>
  132.         </test>
  133.         <edit name="family" mode="append_last">
  134.             <string>sans-serif</string>
  135.         </edit>
  136.     </match>
  137.     
  138. <!--
  139.   Some Asian fonts misadvertise themselves as monospaced when
  140.   in fact they are dual-spaced (half and full).  This makes
  141.   FreeType very confused as it forces all widths to match.
  142.   Undo this magic by disabling the width forcing code -->
  143.     <match target="font">
  144.         <test name="family"><string>GulimChe</string></test>
  145.         <edit name="globaladvance"><bool>false</bool></edit>
  146.     </match>
  147.     
  148.     <match target="font">
  149.         <test name="family"><string>DotumChe</string></test>
  150.         <edit name="globaladvance"><bool>false</bool></edit>
  151.     </match>
  152.  
  153.     <match target="font">
  154.         <test name="family"><string>BatangChe</string></test>
  155.         <edit name="globaladvance"><bool>false</bool></edit>
  156.     </match>
  157.  
  158.     <match target="font">
  159.         <test name="family"><string>GungsuhChe</string></test>
  160.         <edit name="globaladvance"><bool>false</bool></edit>
  161.     </match>
  162.  
  163. <!-- 
  164.     The Bitstream Vera fonts have GASP entries suggesting that hinting be
  165.     disabled below 8 ppem, but FreeType ignores those, preferring to use
  166.     the data found in the instructed hints.  The initial Vera release
  167.     didn't include the right instructions in the 'prep' table. Fix this
  168.     by disabling hinting manually at smaller sizes (< 8ppem)
  169.  -->
  170.     
  171.     <match target="font">
  172.         <test name="family">
  173.             <string>Bitstream Vera Sans</string>
  174.         </test>
  175.         <test name="pixelsize" compare="less">
  176.             <double>7.5</double>
  177.         </test>
  178.         <edit name="hinting">
  179.             <bool>false</bool>
  180.         </edit>
  181.     </match>
  182.     
  183.     <match target="font">
  184.         <test name="family">
  185.             <string>Bitstream Vera Serif</string>
  186.         </test>
  187.         <test name="pixelsize" compare="less">
  188.             <double>7.5</double>
  189.         </test>
  190.         <edit name="hinting">
  191.             <bool>false</bool>
  192.         </edit>
  193.     </match>
  194.     
  195.     <match target="font">
  196.         <test name="family">
  197.             <string>Bitstream Vera Sans Mono</string>
  198.         </test>
  199.         <test name="pixelsize" compare="less">
  200.             <double>7.5</double>
  201.         </test>
  202.         <edit name="hinting">
  203.             <bool>false</bool>
  204.         </edit>
  205.     </match>
  206.     
  207. <!--
  208.   Load per-user customization file
  209. -->
  210.     <include ignore_missing="yes">~/.fonts.conf</include>
  211.  
  212. <!--
  213.   Load local system customization file
  214. -->
  215.     <include ignore_missing="yes">local.conf</include>
  216.  
  217. <!--
  218.   Alias well known font names to available TrueType fonts
  219. -->
  220.     <alias>
  221.         <family>Times</family>
  222.         <accept><family>Times New Roman</family></accept>
  223.     </alias>
  224.     <alias>
  225.         <family>Helvetica</family>
  226.         <accept><family>Verdana</family></accept>
  227.     </alias>
  228.     <alias>
  229.         <family>Arial</family>
  230.         <accept><family>Verdana</family></accept>
  231.     </alias>
  232.     <alias>
  233.         <family>Courier</family>
  234.         <accept><family>Courier New</family></accept>
  235.     </alias>
  236.  
  237. <!--
  238.  Check user preference to avoid bitmap fonts and replace
  239.  bitmap face names with equivalent scalable fonts
  240.  -->
  241.  
  242.     <match target="pattern">
  243.             <test name="prefer_outline">
  244.                     <bool>true</bool>
  245.             </test>
  246.             <test name="family">
  247.                     <string>Helvetica</string>
  248.             </test>
  249.             <edit name="family" mode="prepend" binding="same">
  250.                     <string>Arial</string>
  251.             </edit>
  252.     </match>
  253.  
  254.     <match target="pattern">
  255.             <test name="prefer_outline">
  256.                     <bool>true</bool>
  257.             </test>
  258.             <test name="family">
  259.                     <string>Times</string>
  260.             </test>
  261.             <edit name="family" mode="prepend" binding="same">
  262.                     <string>Times New Roman</string>
  263.             </edit>
  264.     </match>
  265. <!--
  266.   Provide required aliases for standard names
  267. -->
  268.     <alias>
  269.         <family>serif</family>
  270.         <prefer>
  271.             <family>Bitstream Vera Serif</family>
  272.             <family>Times New Roman</family>
  273.             <family>Nimbus Roman No9 L</family>
  274.             <family>Luxi Serif</family>
  275.             <family>Times</family>
  276.             <family>Kochi Mincho</family>
  277.             <family>AR PL SungtiL GB</family>
  278.             <family>AR PL Mingti2L Big5</family>
  279.             <family>Baekmuk Batang</family>            
  280.         </prefer>
  281.     </alias>
  282.     <alias>
  283.         <family>sans-serif</family>
  284.         <prefer>
  285.             <family>Bitstream Vera Sans</family>
  286.             <family>Verdana</family>
  287.             <family>Nimbus Sans L</family>
  288.             <family>Luxi Sans</family>
  289.             <family>Arial</family>
  290.             <family>Helvetica</family>
  291.             <family>Kochi Gothic</family>
  292.             <family>AR PL KaitiM GB</family>
  293.             <family>AR PL KaitiM Big5</family>
  294.             <family>Baekmuk Dotum</family>
  295.             <family>SimSun</family>
  296.         </prefer>
  297.     </alias>
  298.     <alias>
  299.         <family>monospace</family>
  300.         <prefer>
  301.             <family>Bitstream Vera Sans Mono</family>
  302.             <family>Andale Mono</family>
  303.             <family>Courier New</family>
  304.             <family>Luxi Mono</family>
  305.             <family>Nimbus Mono L</family>
  306.             <family>Kochi Gothic</family>
  307.             <family>AR PL KaitiM GB</family>
  308.             <family>Baekmuk Dotum</family>
  309.         </prefer>
  310.     </alias>
  311.  
  312. <!-- 
  313.  Artificial oblique for fonts without an italic or oblique version
  314.  -->
  315.  
  316.     <match target="font">
  317.         <!-- check to see if the font is roman -->
  318.         <test name="slant">
  319.             <const>roman</const>
  320.         </test>
  321.         <!-- check to see if the pattern requested non-roman -->
  322.         <test target="pattern" name="slant" compare="not_eq">
  323.             <const>roman</const>
  324.         </test>
  325.         <!-- multiply the matrix to slant the font -->
  326.         <edit name="matrix" mode="assign">
  327.             <times>
  328.                 <name>matrix</name>
  329.                 <matrix><double>1</double><double>0.2</double>
  330.                     <double>0</double><double>1</double>
  331.                 </matrix>
  332.             </times>
  333.         </edit>
  334.         <!-- pretend the font is oblique now -->
  335.         <edit name="slant" mode="assign">
  336.             <const>oblique</const>
  337.         </edit>
  338.     </match>
  339.  
  340.     <config>
  341. <!--
  342.   These are the default Unicode chars that are expected to be blank
  343.   in fonts.  All other blank chars are assumed to be broken and
  344.   won't appear in the resulting charsets
  345.  -->
  346.         <blank>
  347.             <int>0x0020</int>    <!-- SPACE -->
  348.             <int>0x00a0</int>    <!-- NO-BREAK SPACE -->
  349.             <int>0x00ad</int>    <!-- SOFT HYPHEN -->
  350.             <int>0x115f</int>    <!-- HANGUL CHOSEONG FILLER -->
  351.             <int>0x1160</int>    <!-- HANGUL JUNGSEONG FILLER -->
  352.             <int>0x1680</int>    <!-- OGHAM SPACE MARK -->
  353.             <int>0x2000</int>    <!-- EN QUAD -->
  354.             <int>0x2001</int>    <!-- EM QUAD -->
  355.             <int>0x2002</int>    <!-- EN SPACE -->
  356.             <int>0x2003</int>    <!-- EM SPACE -->
  357.             <int>0x2004</int>    <!-- THREE-PER-EM SPACE -->
  358.             <int>0x2005</int>    <!-- FOUR-PER-EM SPACE -->
  359.             <int>0x2006</int>    <!-- SIX-PER-EM SPACE -->
  360.             <int>0x2007</int>    <!-- FIGURE SPACE -->
  361.             <int>0x2008</int>    <!-- PUNCTUATION SPACE -->
  362.             <int>0x2009</int>    <!-- THIN SPACE -->
  363.             <int>0x200a</int>    <!-- HAIR SPACE -->
  364.             <int>0x200b</int>    <!-- ZERO WIDTH SPACE -->
  365.             <int>0x200c</int>    <!-- ZERO WIDTH NON-JOINER -->
  366.             <int>0x200d</int>    <!-- ZERO WIDTH JOINER -->
  367.             <int>0x200e</int>    <!-- LEFT-TO-RIGHT MARK -->
  368.             <int>0x200f</int>    <!-- RIGHT-TO-LEFT MARK -->
  369.             <int>0x2028</int>    <!-- LINE SEPARATOR -->
  370.             <int>0x2029</int>    <!-- PARAGRAPH SEPARATOR -->
  371.             <int>0x202a</int>    <!-- LEFT-TO-RIGHT EMBEDDING -->
  372.             <int>0x202b</int>    <!-- RIGHT-TO-LEFT EMBEDDING -->
  373.             <int>0x202c</int>    <!-- POP DIRECTIONAL FORMATTING -->
  374.             <int>0x202d</int>    <!-- LEFT-TO-RIGHT OVERRIDE -->
  375.             <int>0x202e</int>    <!-- RIGHT-TO-LEFT OVERRIDE -->
  376.             <int>0x202f</int>    <!-- NARROW NO-BREAK SPACE -->
  377.             <int>0x205f</int>    <!-- MEDIUM MATHEMATICAL SPACE -->
  378.             <int>0x2060</int>    <!-- WORD JOINER -->
  379.             <int>0x2061</int>    <!-- FUNCTION APPLICATION -->
  380.             <int>0x2062</int>    <!-- INVISIBLE TIMES -->
  381.             <int>0x2063</int>    <!-- INVISIBLE SEPARATOR -->
  382.             <int>0x206A</int>    <!-- INHIBIT SYMMETRIC SWAPPING -->
  383.             <int>0x206B</int>    <!-- ACTIVATE SYMMETRIC SWAPPING -->
  384.             <int>0x206C</int>    <!-- INHIBIT ARABIC FORM SHAPING -->
  385.             <int>0x206D</int>    <!-- ACTIVATE ARABIC FORM SHAPING -->
  386.             <int>0x206E</int>    <!-- NATIONAL DIGIT SHAPES -->
  387.             <int>0x206F</int>    <!-- NOMINAL DIGIT SHAPES -->
  388.             <int>0x3000</int>    <!-- IDEOGRAPHIC SPACE -->
  389.             <int>0x3164</int>    <!-- HANGUL FILLER -->
  390.             <int>0xfeff</int>    <!-- ZERO WIDTH NO-BREAK SPACE -->
  391.             <int>0xffa0</int>    <!-- HALFWIDTH HANGUL FILLER -->
  392.             <int>0xfff9</int>    <!-- INTERLINEAR ANNOTATION ANCHOR -->
  393.             <int>0xfffa</int>    <!-- INTERLINEAR ANNOTATION SEPARATOR -->
  394.             <int>0xfffb</int>    <!-- INTERLINEAR ANNOTATION TERMINATOR -->
  395.         </blank>
  396. <!--
  397.   Rescan configuration every 30 seconds when FcFontSetList is called
  398.  -->
  399.         <rescan>
  400.             <int>30</int>
  401.         </rescan>
  402.     </config>
  403.  
  404. </fontconfig>
  405.